testboxcss: Fix custom CSS
authorTimm Bäder <mail@baedert.org>
Sat, 22 Apr 2017 10:16:03 +0000 (12:16 +0200)
committerTimm Bäder <mail@baedert.org>
Mon, 24 Apr 2017 13:16:08 +0000 (15:16 +0200)
remove engine: parameter and add units to values

tests/testboxcss.c

index 3fee69534a9775d275cd4b9280052e1aa8fb9a06..a5c57a72ad4fb0eaec4b4d2dcaf1ec434d96bcd5 100644 (file)
 
 #define DEFAULT_CSS \
   ".play {\n" \
-  "  engine: none;\n" \
   "  background-image: none;\n" \
   "  background-color: red;\n" \
   "  border-color: black;\n" \
-  "  border-radius: 0;\n" \
+  "  border-radius: 0px;\n" \
   "}\n" \
   "\n" \
   ".play:nth-child(even) {\n" \
   "}\n" \
   "\n" \
   ".play:nth-child(first) {\n" \
-  "  border-radius: 5 0 0 5;\n" \
+  "  border-radius: 5px 0px 0px 5px;\n" \
   "}\n" \
   "\n" \
   ".play:nth-child(last) {\n" \
-  "  border-radius: 0 5 5 0;\n" \
+  "  border-radius: 0px 5px 5px 0px;\n" \
   "}\n" \
   "\n"